home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / AlexNeXTSTEPSource / Source / Chapter3_OOD / ShapeArea / Square.h < prev    next >
Text File  |  1995-06-12  |  114b  |  13 lines

  1. #import "Rectangle.h"
  2.  
  3. @interface Square:Rectangle
  4. {
  5. }
  6.  
  7. -(float)calcArea;
  8. -printHeight;
  9. -printWidth;
  10. -free;
  11.  
  12. @end
  13.